this is the blockquotes.
\[ Y = a + bX \]
use R to analyze data
data = read.csv("soil_data.csv")
summary(data)
## Soil_Sample pH Nitrogen Phosphorus Potassium
## Length:5 Min. :5.80 Min. :18 Min. :12.0 Min. :35
## Class :character 1st Qu.:5.90 1st Qu.:20 1st Qu.:14.0 1st Qu.:38
## Mode :character Median :6.20 Median :22 Median :15.0 Median :40
## Mean :6.28 Mean :23 Mean :15.4 Mean :41
## 3rd Qu.:6.50 3rd Qu.:25 3rd Qu.:16.0 3rd Qu.:42
## Max. :7.00 Max. :30 Max. :20.0 Max. :50
## Organic_Matter Soil_Type
## Min. :1.80 Length:5
## 1st Qu.:1.90 Class :character
## Median :2.20 Mode :character
## Mean :2.28
## 3rd Qu.:2.50
## Max. :3.00